home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr46 / stawin.zip / TEST.PRG < prev   
Text File  |  1993-06-09  |  191b  |  12 lines

  1. // A small test program to test STATWIN functions. Compile with /a/m/n.
  2.  
  3. FUNCTION Main()
  4.  
  5.    LOCAL n
  6.  
  7.    StatInit()
  8.    for n = 1 to 10000
  9.       StatWin(10000,n)
  10.    next
  11.  
  12. RETURN NIL